home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / yahootoolbar.xpi / components / nsYahooDomBuilder.idl next >
Text File  |  2007-01-12  |  1KB  |  39 lines

  1. #
  2. # Copyright 2005 - 2006 Yahoo! Inc. All rights reserved.
  3. #
  4.  
  5. #include "nsISupports.idl"
  6. interface nsIDOMNode;
  7. interface nsIDOMElement;
  8. interface nsIDOMDocument;
  9. interface nsIYahooFeedNode;
  10. interface nsIDOMDocumentFragment;
  11. [scriptable, uuid(921c55c5-838d-413e-8afc-ce83f433c030)]
  12. interface nsIYahooDomBuilder: nsISupports
  13. {
  14.     
  15.     attribute string bm2Feed;
  16.     attribute string bm2FFBMImportCrumb;
  17.     
  18.     attribute nsIDOMDocumentFragment alerts;
  19.     attribute nsIDOMDocumentFragment bookmarks;
  20.     attribute nsIDOMDocumentFragment bookmarks_m;
  21.     
  22.     attribute nsIDOMDocumentFragment toolbar;
  23.     attribute nsIDOMDocumentFragment menubar;
  24.     attribute nsIDOMDocumentFragment menubarExtra;
  25.     attribute nsIDOMDocumentFragment toolar_context;
  26.     attribute nsIDOMDocumentFragment page_context;
  27.     
  28.     void clear();
  29.     nsIDOMNode addNode(in nsIYahooFeedNode node, in nsIDOMNode parent);
  30.     void remove(in string id);
  31.     
  32.     void clearBM2();
  33.     void buildBM2(in nsIDOMNode node, in nsIDOMNode parent);
  34.     
  35.     void bumpUpBM2Usage(in string bid);
  36.     void clearBM2Usage();
  37.     string getBM2UsageString();
  38. };
  39.